home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / Training / HyperCard 2.0 Training / •HC 2.0-4 / card_2955.txt < prev    next >
Text File  |  1990-04-06  |  4KB  |  200 lines

  1. -- card: 2955 from stack: in.0-4
  2. -- bmap block id: 5993
  3. -- flags: 0000
  4. -- background id: 2767
  5. -- name: Ex 1.1
  6.  
  7.  
  8. -- part 4 (button)
  9. -- low flags: 00
  10. -- high flags: 0000
  11. -- rect: left=87 top=116 right=203 bottom=162
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: choice1
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   hideFeedback
  23.   set hilite of me to not hilite of me
  24. end mouseUp
  25.  
  26.  
  27.  
  28. -- part 5 (button)
  29. -- low flags: 00
  30. -- high flags: 0000
  31. -- rect: left=169 top=117 right=194 bottom=306
  32. -- title width / last selected line: 0
  33. -- icon id / first selected line: 0 / 0
  34. -- text alignment: 1
  35. -- font id: 0
  36. -- text size: 12
  37. -- style flags: 0
  38. -- line height: 16
  39. -- part name: choice2
  40. ----- HyperTalk script -----
  41. on mouseUp
  42.   hideFeedback
  43.   set hilite of me to not hilite of me
  44. end mouseUp
  45.  
  46.  
  47.  
  48. -- part 6 (button)
  49. -- low flags: 00
  50. -- high flags: 0000
  51. -- rect: left=322 top=118 right=199 bottom=397
  52. -- title width / last selected line: 0
  53. -- icon id / first selected line: 0 / 0
  54. -- text alignment: 1
  55. -- font id: 0
  56. -- text size: 12
  57. -- style flags: 0
  58. -- line height: 16
  59. -- part name: choice3
  60. ----- HyperTalk script -----
  61. on mouseUp
  62.   hideFeedback
  63.   set hilite of me to not hilite of me
  64. end mouseUp
  65.  
  66.  
  67.  
  68. -- part 7 (button)
  69. -- low flags: 00
  70. -- high flags: 0000
  71. -- rect: left=86 top=217 right=298 bottom=170
  72. -- title width / last selected line: 0
  73. -- icon id / first selected line: 0 / 0
  74. -- text alignment: 1
  75. -- font id: 0
  76. -- text size: 12
  77. -- style flags: 0
  78. -- line height: 16
  79. -- part name: choice4
  80. ----- HyperTalk script -----
  81. on mouseUp
  82.   hideFeedback
  83.   set hilite of me to not hilite of me
  84. end mouseUp
  85.  
  86.  
  87.  
  88. -- part 8 (button)
  89. -- low flags: 00
  90. -- high flags: 0000
  91. -- rect: left=198 top=214 right=298 bottom=285
  92. -- title width / last selected line: 0
  93. -- icon id / first selected line: 0 / 0
  94. -- text alignment: 1
  95. -- font id: 0
  96. -- text size: 12
  97. -- style flags: 0
  98. -- line height: 16
  99. -- part name: choice5
  100. ----- HyperTalk script -----
  101. on mouseUp
  102.   hideFeedback
  103.   set hilite of me to not hilite of me
  104. end mouseUp
  105.  
  106.  
  107.  
  108. -- part 9 (button)
  109. -- low flags: 00
  110. -- high flags: 0000
  111. -- rect: left=323 top=215 right=297 bottom=398
  112. -- title width / last selected line: 0
  113. -- icon id / first selected line: 0 / 0
  114. -- text alignment: 1
  115. -- font id: 0
  116. -- text size: 12
  117. -- style flags: 0
  118. -- line height: 16
  119. -- part name: choice6
  120. ----- HyperTalk script -----
  121. on mouseUp
  122.   hideFeedback
  123.   set hilite of me to not hilite of me
  124. end mouseUp
  125.  
  126.  
  127.  
  128. -- part 10 (button)
  129. -- low flags: 00
  130. -- high flags: A003
  131. -- rect: left=401 top=293 right=311 bottom=460
  132. -- title width / last selected line: 0
  133. -- icon id / first selected line: 0 / 0
  134. -- text alignment: 1
  135. -- font id: 0
  136. -- text size: 12
  137. -- style flags: 0
  138. -- line height: 16
  139. -- part name: Done
  140. ----- HyperTalk script -----
  141. -- The handler for "checkManyRight" is in the stack script.
  142. on mouseUp
  143.   checkManyRight
  144. end mouseUp
  145.  
  146.  
  147.  
  148. -- part 23 (button)
  149. -- low flags: 00
  150. -- high flags: 8003
  151. -- rect: left=344 top=314 right=333 bottom=460
  152. -- title width / last selected line: 0
  153. -- icon id / first selected line: 0 / 0
  154. -- text alignment: 1
  155. -- font id: 0
  156. -- text size: 12
  157. -- style flags: 0
  158. -- line height: 16
  159. -- part name: Correct Answer
  160. ----- HyperTalk script -----
  161. -- This handler shows the correct answer.  It dehilites all btns,
  162. -- then hilites the correct ones.
  163. on mouseUp
  164.   hideFeedback
  165.   repeat 3
  166.     lock screen
  167.     dehiliteBtns
  168.     unlock screen
  169.     wait 15
  170.     lock screen
  171.     repeat with i=1 to 6
  172.       set the hilite of btn i to true
  173.     end repeat
  174.     unlock screen
  175.     wait 15
  176.   end repeat
  177.   ans 4
  178. end mouseUp
  179.  
  180.  
  181.  
  182. -- part contents for background part 9
  183. ----- text -----
  184. 1 of 6
  185.  
  186. -- part contents for background part 6
  187. ----- text -----
  188.  
  189. Click on the functions below that HyperCard can perform. Click ‚ÄúDone‚Äù when you have made your selection.
  190.  
  191. -- part contents for background part 19
  192. ----- text -----
  193. 123456
  194.  
  195. -- part contents for background part 21
  196. ----- text -----
  197. Correct. HyperCard can do all these things and more.
  198. Yes, this choice is correct -- but look closely and you‚Äôll see that all choices are correct.
  199. Yes, these choices are correct -- but look closely and you‚Äôll see that all choices are correct.
  200. This is the correct answer. HyperCard can do all these things and more.